home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / holdwc.zip / HOLDIT!.DOC next >
Text File  |  1993-02-12  |  4KB  |  103 lines

  1. ╔══════════════════════════════════════════════════════════════════════════════╗
  2. ║   HOLDIT!.SYS  dummy device driver  by  »-Swift-Ware->  Copyright (C) 1993   ║
  3. ╚══════════════════════════════════════════════════════════════════════════════╝
  4.  
  5.        PLEASE READ ALL OF THIS DOCUMENT BEFORE INSTALLING "HOLDIT!.SYS"
  6.  
  7.         HOLDIT!.SYS is a dummy device driver that never actually installs in 
  8. system memory (uses no memory) but enables pausing between each device your 
  9. CONFIG.SYS file attempts to load.  The program will wait until you press a key
  10. before continuing, it then moves on to the next device driver.
  11.  
  12.         HOLDIT!.SYS also enables the displaying of a one line message before
  13. or after a device is loaded. This can be useful for device drivers that do not
  14. display any messages about being successfully installed.
  15.  
  16.         HOLDIT!.SYS displays the next command line in you CONFIG.SYS file
  17. while it is waiting for a key press.  This shows you which device driver is
  18. to be installed next before DOS gets hold of it.  With this ability you can
  19. easily determine which driver is hanging (crashing) your system.  
  20.  
  21.  
  22. Syntax is:   DEVICE=C:\HOLDIT!.SYS  ~This is an^EXAMPLE~message.
  23.                                   | |          |       |
  24.                                   | |          |       |
  25. Leave at least ONE space between__| |          |       |__Second Tilde returns
  26. program name and start of message.  |          |          message output to
  27.                                     |          |          lowercase.
  28. You must start each message with a (~)         |
  29. character. The "Tilde" must be placed          |
  30. at least one space after the end of            |
  31. the program name (holdit!.sys ~) even          |
  32. if you wish not to display a message.          |
  33. First letter of message is always              | 
  34. printed in uppercase.                          |
  35.                                                |
  36. Use the Carat (^) character to force           |
  37. HOLDIT!.SYS to print in uppercase._____________|
  38.  
  39. The reason switches (~^) are used within in a message is because DOS always
  40. converts letters to uppercase when it reads in a command. These two switches
  41. enable you to make your message much easier to read.
  42.  
  43. For HOLDIT!.SYS to work properly you must not use the REM statement between
  44. any of the device drivers you are installing from within your CONFIG.SYS file.
  45.  
  46. Here is an example of the programs output:
  47. ------------------------------------------
  48.  
  49. Ready to begin installing device drivers.      (First displayed message)
  50.  
  51. Next command is C:\DOS\HIMEM.SYS               (Next driver to be installed)
  52.  
  53. Press a key to continue . .                    (Wait for a key to be pressed)
  54.  
  55. After you press a key the screen will clear for the next Message/Pause.
  56. -----------------------------------------------------------------------
  57.  
  58. Driver HIMEM.SYS is installed.                 (Second message)
  59.  
  60. Next command is HIGH,UMB                       (Next config command)
  61.  
  62. Press a key to continue . .                    (Wait for key press)
  63.  
  64. Again you press a key, the screen then clears for the next Message/Pause.
  65. -------------------------------------------------------------------------
  66.  
  67. Loaded DOS high successfully.                  (Third message)
  68.  
  69. Next command is C:\DOS\EMM386.EXE NOEMS        (Next driver to be installed)
  70.  
  71. Press a key to continue . .                    (Wait for key press)
  72.  
  73. etc, etc....
  74.  
  75. The following is an example CONFIG.SYS file using HOLDIT!.SYS
  76. -------------------------------------------------------------
  77. FILES=30
  78. BUFFERS=30
  79. device=c:\holdit!.sys ~Ready to begin installing device drivers.
  80. DEVICE=C:\DOS\HIMEM.SYS
  81. device=c:\holdit!.sys ~Driver^HIMEM.SYS~is installed.
  82. DOS=HIGH,UMB
  83. device=c:\holdit!.sys ~Loaded^DOS~high successfully.
  84. DEVICE=C:\DOS\EMM386.EXE NOEMS
  85. device=c:\holdit!.sys ~Driver^EMM386.EXE~is installed. 
  86. DEVICEHIGH=C:\DOS\ANSI.SYS
  87. device=c:\holdit!.sys ~Loaded^ANSI.SYS~driver successfully.
  88. DEVICEHIGH=C:\MOUSE.SYS
  89. device=c:\holdit!.sys ~Loaded^MOUSE.SYS~driver successfully.
  90. DEVICEHIGH=C:\DOS\SMARTDRV.SYS 2048 2048
  91. device=c:\holdit!.sys ~Cache driver^SMARTDRV.SYS~is installed.
  92. BREAK=ON
  93. -------------------------------------------------------------------------------
  94.  
  95.         Enjoy!
  96.  
  97.         William Cravener  
  98.         520 N. Stateline Rd.
  99.         Sharon Pa. 16146
  100.         CIS: 72230,1306
  101. 
  102.  
  103.